home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pr42sdk / examples / projects / device / x-fake.rc < prev    next >
Text File  |  1995-10-07  |  886b  |  41 lines

  1. //========================================================================================
  2. //
  3. // X-fake.rc - A skeleton device control module resource file.
  4. //
  5. // Part of the Adobe Premiere 4.2 Plug-in Developer's Toolkit.
  6. //
  7. // Copyright ⌐ 1993-96, Adobe Systems Incorporated, all rights reserved worldwide.
  8. //
  9. //========================================================================================
  10.  
  11. #include <windows.h>
  12. #include "Premiere.h"
  13. #include "Fourcc.h"
  14.  
  15.  
  16. // required for all plugins:
  17. // identifies what type of plugin it is
  18.  
  19. 1000 TYPE LOADONCALL MOVEABLE DISCARDABLE 
  20. BEGIN
  21.     0x0000,
  22.     DevCtype
  23. END
  24.  
  25.  
  26. // DevC name:
  27.  
  28. 1000 TEXT LOADONCALL MOVEABLE DISCARDABLE
  29. BEGIN
  30.     0x0000,
  31.     "Demo Fake Device (SDK)\0"
  32. END
  33.  
  34.  
  35. // This is the version of the API supported by the plugin
  36. 1000 FLvs LOADONCALL MOVEABLE DISCARDABLE
  37. BEGIN
  38.     0x0000,
  39.     0x0002
  40. END
  41.